A design language for premium, dark-themed knowledge interfaces.
"Numbers are heroes, labels are whispers."
| from amaranth import Signal, Module, Cat, Elaboratable, Record, Mux | |
| from amaranth.hdl.rec import DIR_FANIN, DIR_FANOUT | |
| from amaranth.hdl.ast import Rose, Fell | |
| from amaranth.compat import TSTriple | |
| from amaranth.lib.cdc import FFSynchronizer | |
| class I2CTarget(Elaboratable): | |
| """ | |
| Simple I2C target. |
| """ | |
| The most atomic way to train and run inference for a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
| #!/usr/bin/env python3 | |
| import argparse, os, pathlib, sys | |
| def file_path(string): | |
| if os.path.isfile(string): | |
| return string | |
| else: | |
| raise FileNotFoundError(string) | |
| ap = argparse.ArgumentParser() | |
| ap.add_argument("-i", "--input", type=file_path, required=True, |
Everything built on top of the base OpenClaw platform. Canonical reference for what exists, where it lives, and how it works. Operational use cases and workflow playbooks live in
docs/USE-CASES-WORKFLOWS.md.
| #!/bin/bash | |
| #------------------------------ | |
| # Script to manage vCenter SSL certificates. | |
| # | |
| # Author: Vincent Santa Maria [vinny.santa-maria@broadcom.com] | |
| #------------------------------ | |
| #------------------------------ | |
| # for debugging purposes only, uncomment the following line: | |
| # export PS4='+[${SECONDS}s][${BASH_SOURCE}:${LINENO}]: ${FUNCNAME[0]:+${FUNCNAME[0]}(): }'; set -x; |